home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / Prog / B-C / C++ FAQ Reference 1.0 / C++ FAQ Reference 1.0.rsrc / TEXT_232.txt < prev    next >
Encoding:
Text File  |  1993-06-30  |  285 b   |  1 lines

  1. Unlike a pointer, once a reference is bound to an object, it can NOT be 'reseated' to another object.  The reference itself isn't an object; you can't separate the reference from the referred-to-object.  Ex: '&ref' is the address of the referred-to-object, not of the reference itself.